home *** CD-ROM | disk | FTP | other *** search
/ New Masters of Flash / New Masters of Flash.iso / pc / MOVIES / 15.dir / 00130_Text_text09.txt < prev    next >
Text File  |  2000-10-01  |  669b  |  7 lines

  1. Then create a movie clip symbol, called Menu Item, which will have ten frames, one each for the ten pieces of content that we want in the final menu. Menu Item will also have a layer for the button youΓÇÖve just made, a layer to contain the variables , a layer for a drag button, and a layer for any extra graphics you want to add.
  2. Add this action to the movie clip (I put it on the script layer, in frame 1):
  3.  
  4. gotoAndStop (getProperty ("",_name)); 
  5.  
  6. This tells the movie clip to go to, and stop on, the frame of its own instance name. So if the Menu Item instance name is 5, it will go to frame 5 and stop. The reason for doing this will become clear very soon.
  7.